/*OPRAVA NAVIGACE*/

#navigation {
  overflow: visible !important;
}

.menu-helper:after {
  display: none !important;
}

.navigation-in ul li.splitted {
  visibility: visible !important;
}

.submenu-visible .navigation-in ul li.splitted {
  display: block !important;
}

.navigation-in.menu {
  flex-wrap: nowrap !important;
  min-width: 500px !important;
}

/*NAVIGACE*/

.custom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 50px;
  padding: 5px 10px;
  border-bottom: 1px solid #c4bfb1;
  background: #122038;
  color: white;
  font-size: 12px;
}

.custom-bar .left,
.custom-bar .right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.custom-bar .links {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.custom-bar a {
  color: white;
  text-decoration: none;
}

.custom-bar a:hover {
  text-decoration: underline;
}

a.phone {
  font-size: 14px;
}

/*KONTAKT*/

.kontakt {
  display: flex;
  align-items: center;
  gap: 15px;
}

.kontakt img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
}

.contact-text {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

/*SOCIÁLNÍ SÍTĚ*/

.soc-site {
  display: flex;
  gap: 10px;
}

.soc-site a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  aspect-ratio: 1 / 1;
  padding: 10px;
  border-radius: 30px;
  background-color: white;
  transition: background-color 0.3s ease-out;
}

.soc-site a:hover {
  background-color: #c4bfb1;
}

.soc-site img {
  height: 15px;
}

/*MOBIL - PŘIDANÉ LINKY Z JAVASCRIPTU*/

.mobile-nav-links {
  display: none !important;
}

/*RESPONZIVITA*/

@media screen and (max-width: 1200px) {
  .custom-bar {
    margin: 0 20px;
  }
}

@media screen and (max-width: 992px) {
  .custom-bar {
    justify-content: flex-end;
  }

  .custom-bar .left {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .custom-bar {
    width: 100%;
    margin: 0;
    padding: 5px 25px;
  }

  .custom-bar .soc-site,
  span.claim,
  .custom-bar .kontakt > img {
    display: none !important;
  }

  .mobile-nav-links {
    display: flex !important;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .mobile-nav-links a {
    padding: 12px 0px !important;
    font-weight: 400 !important;
  }

  #navigation .navigationActions {
    border-top: unset !important;
    margin-top: 0;
  }

  #navigation ul.menu-level-1 > li > a,
  #navigation ul.menu-level-1 > li > a.active {
    color: black !important;
  }
}
